home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Python 1.4 / Python 1.4 source / Mac / Python / macgetmtime.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-18  |  200 b   |  15 lines  |  [TEXT/CWIE]

  1. #include "macstat.h"
  2. #include "rename2.h"
  3.  
  4. /* Interfaced used by import.c */
  5.  
  6. long
  7. getmtime(path)
  8.     char *path;
  9. {
  10.     struct macstat st;
  11.     if (macstat(path, &st) != 0)
  12.         return -1L;
  13.     return st.st_mtime;
  14. }
  15.